home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / ARTIENCE / MIPS.LZH / HELP8.TXT < prev    next >
Text File  |  1988-05-06  |  3KB  |  91 lines

  1.              Multiplied Intelligence Personnel Simulator (M.I.P.S.)
  2.                          Copyright 1987, Michael Reed.
  3.  
  4.                              ╔════════════════════╗
  5.                              ║ FILE ACCESS SYNTAX ║
  6.                              ╚════════════════════╝
  7.  
  8.                          
  9.       Adding a natural language interface to your databases can make then 
  10.          easier to access and understand.  ASCII text files as well as 
  11.               8-bit and 16-bit binary data files can be accessed.
  12.              ─────────────────────────────────────────────────────
  13.  
  14.                                  
  15.  
  16.                        
  17.  
  18.                             
  19.  
  20.                           
  21.  
  22.                            
  23.  
  24.                           
  25.                              ╔════════════════════╗
  26.                              ║ FILE ACCESS SYNTAX ║
  27.                              ╚════════════════════╝
  28.  
  29.                                  [Filename.Ext]
  30.                     Displays full contents of an ASCII file.
  31.  
  32.                                  [Filename.Ext
  33.                         Make file available for reading
  34.                                   (Open file)
  35.  
  36.                                 Location,Length]
  37.                           Read file from Location for 
  38.                        Length characters then close file
  39.  
  40.                                 Location,Length}
  41.                           Read file from Location for
  42.                      Length characters and leave file open
  43.                                 for later reads
  44.  
  45.                         
  46.  
  47.                             
  48.                              ╔════════════════════╗
  49.                              ║ FILE ACCESS SYNTAX ║
  50.                              ╚════════════════════╝
  51.  
  52.                                     Length]
  53.                       Read file from current file position 
  54.                      for Length characters then close file
  55.  
  56.                              
  57.                                     Length}
  58.                       Read file from current file position 
  59.                      for Length characters then leave file 
  60.                               open for later reads 
  61.  
  62.                          
  63.  
  64.                            
  65.  
  66.                           
  67.  
  68.                            
  69.  
  70.                           
  71.  
  72.                              ╔════════════════════╗
  73.                              ║ FILE ACCESS SYNTAX ║
  74.                              ╚════════════════════╝
  75.  
  76.                    If Length = 1, then file data is displayed 
  77.                      as a 8-bit number (range 0 thru 255).
  78.  
  79.                    If Length = 2, then file data is displayed
  80.                     as a 16-bit number (range 0 thru 65535).
  81.         
  82.                    If Length > 2, then file data is displayed 
  83.                               as ASCII characters.
  84.  
  85.                                      NOTE:
  86.                      Only one open file at a time.  Always 
  87.                        remember to close a file that was 
  88.                         opened before leaving the system.
  89.  
  90.  
  91.